home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRAPHICS / IMGLIB95 / UABOUT.PA_ / UABOUT.PA
Text File  |  1996-03-31  |  1KB  |  75 lines

  1. {
  2. Written by Jan Dekkers and Kevin Adams (c) 1995, 1996. If you are a non
  3. registered client, you may use or alter this demo only for evaluation
  4. purposes.
  5.  
  6. Copyright by SkyLine Tools. All rights reserved.
  7.  
  8. Part of Imagelib VCL/DLL Library.
  9. }
  10.  
  11. unit Uabout;
  12.  
  13. {Includes settings to compile in either 16 or 32 bit}
  14. {$I DEFILIB.INC}
  15.  
  16. interface
  17.  
  18. uses
  19. {$IFDEF DEL32}
  20.   Windows,
  21. {$ELSE}
  22.   WinTypes,
  23.   WinProcs,
  24. {$ENDIF}
  25.   Classes,
  26.   Graphics,
  27.   Forms,
  28.   Controls,
  29.   StdCtrls,
  30.   Buttons,
  31.   ExtCtrls,
  32.   sysutils,
  33.   Tmultip;
  34.  
  35. type
  36.   TAboutBox = class(TForm)
  37.     Panel1: TPanel;
  38.     OKButton: TBitBtn;
  39.     ProductName: TLabel;
  40.     Version: TLabel;
  41.     Copyright: TLabel;
  42.     Label1: TLabel;
  43.     Label4: TLabel;
  44.     Label5: TLabel;
  45.     Image1: TPMultiImage;
  46.     Panel2: TPanel;
  47.     Label3: TLabel;
  48.     Label6: TLabel;
  49.     Label7: TLabel;
  50.     Label13: TLabel;
  51.     ListBox1: TListBox;
  52.     Label10: TLabel;
  53.   private
  54.     { Private declarations }
  55.   public
  56.     { Public declarations }
  57.   end;
  58.  
  59. var
  60.   AboutBox: TAboutBox;
  61.  
  62. implementation
  63.  
  64. {$R *.DFM}
  65.  
  66.  
  67. end.
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.